home *** CD-ROM | disk | FTP | other *** search
/ Multicollection 5 Soft 1997 / Multicollection 5 soft 1997 (Win NT 4.0 Work, Serv, OS2).iso / nt40_wrk / classes.zi_ / CLASSES.ZIP / java / util / Enumeration.class (.txt) < prev    next >
Encoding:
Java Class File  |  1996-08-23  |  261 b   |  8 lines

  1. package java.util;
  2.  
  3. public interface Enumeration {
  4.    boolean hasMoreElements();
  5.  
  6.    Object nextElement();
  7. }
  8.